home *** CD-ROM | disk | FTP | other *** search
/ Qu.......ke Neue Level / KroGer Software GmbH - Qu_ke.iso / UTILITY / PRG8.ZIP / F_PACK.H < prev    next >
C/C++ Source or Header  |  1996-02-29  |  2KB  |  54 lines

  1. /*
  2.  * Copyright (C) 1996 by Raphael Quinet.  All rights reserved.
  3.  *
  4.  * Permission to use, copy, modify, and distribute this software and
  5.  * its documentation for any purpose and without fee is hereby
  6.  * granted, provided that the above copyright notice appear in all
  7.  * copies and that both that copyright notice and this permission
  8.  * notice appear in supporting documentation.  If more than a few
  9.  * lines of this code are used in a program which displays a copyright
  10.  * notice or credit notice, the following acknowledgment must also be
  11.  * displayed on the same screen: "This product includes software
  12.  * developed by Raphael Quinet for use in the Quake Editing Utilities
  13.  * project."  THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT EXPRESS OR
  14.  * IMPLIED WARRANTY.
  15.  *
  16.  * More information about the QEU project can be found on the WWW:
  17.  * "http://www.montefiore.ulg.ac.be/~quinet/games/editing.html" or by
  18.  * mail: Raphael Quinet, 9 rue des Martyrs, B-4550 Nandrin, Belgium.
  19.  */
  20.  
  21. #ifndef _F_PACK_H_
  22. #define _F_PACK_H_
  23. /*
  24.  * F_PACK.H - Read and write Quake PACK files.
  25.  */
  26.  
  27. /*
  28.  * The PACKDirectory structure is the structure used by QUAKE to order the
  29.  * data in its PACK files.
  30.  */
  31. typedef struct PACKDirectory *PACKDirPtr;
  32. struct PACKDirectory
  33. {
  34.    char   name[56];             /* name of file */
  35.    UInt32 offset;               /* offset to start of data */
  36.    UInt32 size;                 /* byte size of data */
  37. };
  38.  
  39. PACKDirPtr ReadPACKDirectory(FILE *packfile, UInt32 offset, UInt16 *dirsize_r);
  40. UInt16     FindPACKEntry(PACKDirPtr dir, UInt16 dirsize, char *entryname);
  41. void       DumpPACKDirectory(FILE *outf, PACKDirPtr dir, UInt16 dirsize);
  42. Bool       UnPACKFile(FILE *outf, FILE *packfile, UInt32 offset,
  43.               PACKDirPtr dir, UInt16 dirsize, UInt16 entrynum,
  44.               char *prefixpath);
  45.  
  46. Bool       WritePACKHeader(FILE *packfile, UInt32 *count_r, PACKDirPtr *dir_r,
  47.                UInt16 *dirsize_r);
  48. Bool       AddPACKEntry(FILE *packfile, UInt32 *count_r, PACKDirPtr *dir_r,
  49.             UInt16 *dirsize_r, char *entryname, UInt32 entrysize);
  50. UInt32     WritePACKDirectory(FILE *packfile, UInt32 *count_r, PACKDirPtr dir,
  51.                   UInt16 dirsize);
  52. #endif /* _F_PACK_H_ */
  53. /* end of file */
  54.